body 
{
    background-color: #f1b600;
    font-family: Arial, Helvetica, sans-serif, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}
.container 
{
    background-color: #3d3d3d;
    width: 90%;
    max-width: 350px;
    height: 800px; /* Fixed height */
    margin: 50px auto;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    overflow: auto; /* Allow scrolling if the content exceeds height */
    text-align: center;
}
.image-container 
{
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.centered-image 
{
    width: 232px;
    height: 232px;
    filter: drop-shadow(2px 5px 8px rgba(0, 0, 0, 0.8));
}
h1 
{
    font-size: 24px;
    font-weight: bold;
    color: black;
    font-family: 'Oswald', sans-serif;
    margin-top: 30px; /* Added top margin to move it down */
    margin-bottom: -5px; /* Adjusted margin bottom to make it closer */
}
h2 
{
    font-size: 36px; /* Updated font size to 36px */
    font-weight: bold;
    color: white; /* Set color to white */
    font-family: 'Oswald', sans-serif;
    margin-top: 10px; /* Spacing from h1 */
    margin-bottom: -30px; /* Maintain some spacing below */
    text-decoration: none; /* Remove underline from heading */
}
h2 a 
{
    color: white; /* Ensure link color is white */
    text-decoration: none; /* Remove underline */
}
h2 a:hover 
{
    color: #0068f1;
    text-decoration: underline; /* Underline on hover */
}
.link-item 
{
    display: flex;
    align-items: center;
    /*margin: -50px 0;*/
    padding: 10px 0;
    padding-left: 15px; /* Added left padding for more space */
    text-align: left; /* Align text to the left */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.icon 
{
    width: 40px;
    height: 40px;
    background-color: #f1b600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4); /* Added drop shadow */
}
.link-text 
{
    color: #f1b600;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    text-align: left; /* Align text to the left */
    display: block; /* Make link a block element */
}
.link-text:hover 
{
    text-decoration: underline;
    color: #3a8cf8;
}

.seite2 
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1px;
    padding: 1px;
    padding-bottom: 15px;
}

.imgitem 
{
    flex: 1;
    flex-direction: row;
    background-color: #f1b600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgitem img 
{
    width: 200%;
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 600px) 
{
    .container {
        padding: 15px;
    }
    .seite2 {
        flex-direction: column;
        margin: 3px;
        padding: 5px;
    }
    h1 {
        font-size: 20px;
    }
    .link-item {
        font-size: 14px;
    }
    .imgitem 
    {
        padding-bottom: 10px;
    }
}